1c9c31b02f960525f1030c2128249105842295d1,portal-impl/src/com/liferay/portal/dao/orm/hibernate/LongType.java,LongType,nullSafeGet,#ResultSet#String[]#Object#,72

Before Change



			try {
				value = new Long(GetterUtil.getLong(
					(String)Hibernate.STRING.nullSafeGet(rs, names[0])));
			}
			catch (SQLException sqle2) {
				throw sqle1;

After Change


			try {
				value = new Long(
					GetterUtil.getLong(
						StandardBasicTypes.STRING.nullSafeGet(rs, names[0])));
			}
			catch (SQLException sqle2) {
				throw sqle1;